home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Tools & Goodies / IntlTest / Sources / View.h < prev    next >
Encoding:
Text File  |  1996-09-12  |  1.1 KB  |  44 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                View.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Author:                Mary Boetcher
  7. //
  8. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef VIEW_H
  13. #define VIEW_H
  14.  
  15. // ----- Part Layer -----
  16.  
  17. #ifndef FWSVIEW_H
  18. #include "FWSView.h"
  19. #endif
  20.  
  21. //========================================================================================
  22. // CIntlTestView
  23. //========================================================================================
  24.  
  25. class CIntlTestView : public FW_CSuperView
  26. {
  27. public:
  28.     FW_DECLARE_CLASS
  29.  
  30. public:        
  31.     CIntlTestView(Environment* ev, 
  32.                   FW_CSuperView* container, 
  33.                   const FW_CRect& contentRect, 
  34.                   const FW_CPoint& extent);
  35.     virtual ~ CIntlTestView();
  36.  
  37. public:        
  38.     virtual void         Draw(Environment* ev, ODFacet* odFacet, ODShape* invalidShape);
  39.  
  40.     void                 CenterInFrame(Environment* ev, FW_CPoint& size, FW_ERedrawVerb redraw);
  41. };
  42.  
  43. #endif
  44.